ddc94d
@@ -30,8 +30,10 @@
import javax.xml.bind.annotation.XmlType;
  *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
  *     &lt;enumeration value="XML"/>
  *     &lt;enumeration value="CSV"/>
+ *     &lt;enumeration value="JSON"/>
  *     &lt;enumeration value="ZIP_XML"/>
  *     &lt;enumeration value="ZIP_CSV"/>
+ *     &lt;enumeration value="ZIP_JSON"/>
  *   &lt;/restriction>
  * &lt;/simpleType>
  * </pre>
@@ -42,8 +44,10 @@
public enum ContentType {
 
     XML,
     CSV,
+    JSON,
     ZIP_XML,
-    ZIP_CSV;
+    ZIP_CSV,
+    ZIP_JSON;
 
     public String value() {
         return name();
